Skip to main content
Version: 1.0.2

Add Card Holder with primary address

Create a card holder with the address provided at the time of onboarding the customer.

Method: POST
{{URL}}/cardv2
Headers
NameValue
Content-Typeapplication/json
Payload Parameters
ParametersDescription

reference

Optional

String

Unique reference ID of the request

Sample value: "9932487793635"

transactionType

Mandatory

String

Type of operation/transaction

Constant value: "ADD_CARD_HOLDER_WITH_PRIMARY_ADDRESS"

customerId

Mandatory

String

Unique Id of the customer

Sample value: "100000000033002"

accountNumber

Mandatory

String

Account number of the customer

Sample value: "210199823931012"

product

Mandatory

String

Name of the product associated with the card

Sample value: "DEFAULT"

channel

Mandatory

Enum

Processing channel through which the card transaction

happens

Valid values:

PULSE

VISA_DPS

Sample value: "VISA_DPS"

program

Mandatory

String

Name of the program to which the card product is mapped

Sample value: "DEFAULT"

Example


curl --location --globoff '{{URL}}/cardv2' \
--header 'Content-Type: application/json' \
--data '{"method":"ledger.CARD.request","id":"1","params":{"payload":{"reference":"9932487793635","transactionType":"ADD_CARD_HOLDER_WITH_PRIMARY_ADDRESS","customerId":"100000000033002","accountNumber":"210199823931012","product":"DEFAULT","channel":"VISA_DPS","program":"DEFAULT"},"api":{"signature":"{{signature}}","apiKey":"{{Api-key}}","credential":"{{cred}}"}}}'

Body

{
"method": "ledger.CARD.request",
"id": "1",
"params": {
"payload": {
"reference": "9932487793635",
"transactionType": "ADD_CARD_HOLDER_WITH_PRIMARY_ADDRESS",
"customerId": "100000000033002",
"accountNumber": "210199823931012",
"product": "DEFAULT",
"channel": "VISA_DPS",
"program": "DEFAULT"
},
"api": {
"signature": "{{signature}}",
"apiKey": "{{Api-key}}",
"credential": "{{cred}}"
}
}
}

Response: 200

Response Parameters
ParametersDescription

id

String

Response Id echoed from the request Id

Sample value: " 1"

result

Object

cardHolderId

String

Unique id of the card holder

Sample value: " CH00000000019001"

api

Object

type

String

Acknowledgement for type of operation requested for

Constant value: " ADD_CARD_HOLDER_WITH_PRIMARY_ADDRESS_ACK"

reference

String

Auto generated reference ID of this acknowledgment

Sample value: " REF9932487793635"

dateCreated

Number

Unix timestamp of the response was created

Sample value: 1730723921

originalReference

String

Original reference ID taken from the request

Sample value: " 9932487793635"


{
"id": "1",
"result": {
"cardHolderId": "CH00000000019001",
"api": {
"type": "ADD_CARD_HOLDER_WITH_PRIMARY_ADDRESS_ACK",
"reference": "REF9932487793635",
"dateCreated": 1730723921,
"originalReference": "9932487793635"
}
}
}